home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / DELPHI3.EXE / %MAINDIR% / Examples / Delphi3 / ISAPI CGI and TeeChart / TeeISAPI.dpr < prev    next >
Encoding:
Text File  |  1998-11-17  |  357 b   |  21 lines

  1. library TeeISAPI;
  2.  
  3. uses
  4.   HTTPApp,
  5.   ISAPIApp,
  6.   UnitMain in 'UnitMain.pas' {WebModule1: TWebModule},
  7.   UnitChart in 'UnitChart.pas' {Form2};
  8.  
  9. {$R *.RES}
  10.  
  11. exports
  12.   GetExtensionVersion,
  13.   HttpExtensionProc,
  14.   TerminateExtension;
  15.  
  16. begin
  17.   Application.Initialize;
  18.   Application.CreateForm(TWebModule1, WebModule1);
  19.   Application.Run;
  20. end.
  21.